home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / Chess++ ƒ / CChessSplashScreen.h < prev    next >
Text File  |  1993-04-25  |  787b  |  32 lines

  1. /******************************************************************************
  2.  CChessSplashScreen.h
  3.  
  4.         Interface for the Chess++ Splash Screen Class
  5.         
  6.         Copyright © 1993 Steven J. Bushell.
  7.  
  8.  ******************************************************************************/
  9.  
  10. #define _H_CChessSplashScreen
  11.  
  12. #include "CDirector.h"                    /* Interface for its superclass        */
  13.  
  14. #define WINDChessSplashScreen 520
  15.  
  16.     // Forward class declarations
  17.     
  18. class CPane;
  19.  
  20. class CChessSplashScreen : public CDirector {            /* Class Declaration                */
  21.  
  22. public:
  23.                                 /** Instance Variables **/
  24.     CPane            *itsMainPane;
  25.     short            pageWidth;
  26.     short            pageHeight;
  27.     
  28.                                     /** Construction/Destruction **/
  29.  
  30.     void                    IChessSplashScreen(CDirectorOwner *aSupervisor);
  31.     void                DoChessSplashScreen(void);
  32. };